home *** CD-ROM | disk | FTP | other *** search
/ Aminet 24 / Aminet 24 (1998)(GTI - Schatztruhe)[!][Apr 1998].iso / Aminet / dev / c / AmiVoGL_MDEV.lha / hershey / src / makefile.msc < prev    next >
Makefile  |  1991-07-15  |  567b  |  34 lines

  1. F = -FPc
  2. CFLAGS = -c -DPC -DMSC $(F) -AL -I..\..\src
  3. LIB = .\hershey.lib ..\..\src\vogl.lib
  4.  
  5. .c.obj:
  6.     cl $(CFLAGS) $*.c
  7.  
  8. htext.obj: htext.c
  9.  
  10. check.obj: check.c
  11.  
  12. halloc.obj: halloc.c
  13.  
  14. hershey.lib: htext.obj check.obj halloc.obj
  15.     del hershey.lib
  16.     lib hershey.lib+htext.obj+check.obj+halloc.obj;
  17.  
  18. h2v.obj: h2v.c h2v.h
  19.  
  20. getchar.obj: getchar.c
  21.  
  22. hdisp.obj: hdisp.c
  23.  
  24. fdisp.obj: fdisp.c
  25.  
  26. h2v.exe: h2v.obj getchar.obj
  27.     link h2v+getchar,,nul;
  28.  
  29. hdisp.exe: hdisp.obj getchar.obj $(LIB)
  30.     link hdisp+getchar,,nul,$(LIB)
  31.  
  32. fdisp.exe: fdisp.obj $(LIB)
  33.     link fdisp+getchar,,nul,$(LIB)
  34.